home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / Include / sun4c.md / vmMachStat.h < prev    next >
C/C++ Source or Header  |  1990-09-11  |  647b  |  28 lines

  1. /*
  2.  * vmMachStat.h --
  3.  *
  4.  *    The statistics structure for the Sun vm module.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: /sprite/src/kernel/vm/sun3.md/RCS/vmMachStat.h,v 9.0 89/09/12 15:23:57 douglis Stable $ SPRITE (Berkeley)
  11.  */
  12.  
  13. #ifndef _VMMACHSTAT
  14. #define _VMMACHSTAT
  15.  
  16. /*
  17.  * Statistics about Sun virtual memory.
  18.  */
  19.  
  20. typedef struct {
  21.     int    stealContext;        /* The number of times that have to take
  22.                    a context away from a process. */
  23.     int    stealPmeg;        /* The number of times that have to take a
  24.                    pmeg away from a process. */
  25. } VmMachDepStat;
  26.  
  27. #endif /* _VMMACHSTAT */
  28.